home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / DistributedEO / DEOClient.subproj / DOExtensions.subproj / FoundationExtensionsPrivate.h < prev    next >
Encoding:
Text File  |  1995-02-17  |  910 b   |  35 lines

  1. /*
  2.    FoundationExtensionsPrivate.h modified by enoyau on Fri 13-Jan-1995
  3.  
  4.    You may freely copy, distribute, and reuse the code in this example.
  5.    NeXT disclaims any warranty of any kind, expressed or implied, as to its
  6.    fitness for any particular use.
  7. */
  8. /*
  9.  *  Private classes for the compatibility routines between the old DO
  10.  *  mechanisms and the new Foundation objects.
  11.  *
  12.  *  No guarantee is made for the fitness of this code for any particular
  13.  *  use.  No warranty expressed or implied.  Use at your own risk!
  14.  *
  15.  *  Randy Tidd
  16.  *  NeXT Premium Developer Support
  17.  */
  18. #import <foundation/NSArray.h>
  19. #import <foundation/NSDictionary.h>
  20. #import <objc/Object.h>
  21.  
  22. @interface _NSArrayPlaceHolder : Object
  23. {
  24.     NSArray *array;
  25. }
  26. - initWithArray:(NSArray *)array;
  27. @end
  28.  
  29. @interface _NSDictionaryPlaceHolder : Object
  30. {
  31.     NSDictionary *dictionary;
  32. }
  33. - initWithDictionary:(NSDictionary *)dictionary;
  34. @end
  35.